# Your Second Brain — git ignore rules.
# Git is your undo history. It tracks your files, ME.md, registry.json, the journal, and
# your identity's PUBLIC material. It must NEVER capture a secret.

# --- Secrets: defense in depth. The private key lives in the OS keychain and is never
#     written into this folder — but if anything ever tries to, git refuses to track it.
*private*key*
*.key
*.pem
id_ed25519*
secret*
*.secret
.secrets/

# --- Python runtime cruft from the dashboard/tray
__pycache__/
*.pyc
.venv/
venv/

# --- OS cruft
.DS_Store
Thumbs.db
desktop.ini

# NOTE: identity/did.json and identity/public_key are PUBLIC and ARE tracked (not ignored).
